home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / freecmty_detection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  69 lines

  1. #
  2. # Copyright (C) 2004 Tenable Network Security 
  3. #
  4. #
  5.  
  6. if(description)
  7. {
  8.  script_id(12014);
  9.  script_version("$Revision: 1.2 $");
  10.  
  11.  name["english"] = "FREE COMMUNITY detection";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is using the FREE COMMUNITY program.  
  17. You should ensure that:
  18. - the user intended to install FREE COMMUNITY (it is sometimes silently 
  19. installed)
  20. - the use of FREE COMMUNITY matches your corporate mandates and security policies.
  21.  
  22. To remove this sort of software, you may wish to check out ad-aware or spybot. 
  23.  
  24. See also : http://pestpatrol.com/PestInfo/f/free_community.asp 
  25.  
  26. Solution : Uninstall this software
  27. Risk factor : High";
  28.  
  29.  
  30.  
  31.  script_description(english:desc["english"]);
  32.  
  33.  summary["english"] = "FREE COMMUNITY detection";
  34.  
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  40.  family["english"] = "Windows";
  41.  script_family(english:family["english"]);
  42.  
  43.  script_dependencies("smb_registry_full_access.nasl");
  44.  script_require_keys("SMB/registry_full_access");
  45.  
  46.  script_require_ports(139, 445);
  47.  exit(0);
  48. }
  49.  
  50.  
  51. # start the script
  52.  
  53. if ( ! get_kb_item("SMB/registry_full_access") ) exit(0);
  54.  
  55.  
  56. path[0] = "software\classes\clsid\{2e9caff6-30c7-4208-8807-e79d4ec6f806}";
  57. path[1] = "software\microsoft\windows\currentversion\explorer\browser helper objects\{2e9caff6-30c7-4208-8807-e79d4ec6f806}";
  58.  
  59.  
  60.  
  61. include("smb_nt.inc");
  62.  
  63. for (i=0; path[i]; i++) {
  64.        val = registry_key_exists(key:path[i]);
  65.        if(val != NULL) {security_hole(kb_smb_transport()); exit(0); } 
  66. }
  67.  
  68.  
  69.